home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Hyper / K-L / LImacSTACK11⁄89.cpt / Using Repeat / card_7784.txt < prev    next >
Text File  |  1989-11-02  |  919b  |  43 lines

  1. -- card: 7784 from stack: in
  2. -- bmap block id: 9661
  3. -- flags: 0000
  4. -- background id: 2687
  5. -- name: 
  6. ----- HyperTalk script -----
  7. on opencard
  8.   repeat with i = 8 to 9
  9.     hide bg btn i
  10.   end repeat
  11. end openCard
  12.  
  13.  
  14. -- part 4 (field)
  15. -- low flags: 01
  16. -- high flags: 2001
  17. -- rect: left=79 top=58 right=292 bottom=427
  18. -- title width / last selected line: 0
  19. -- icon id / first selected line: 0 / 0
  20. -- text alignment: 0
  21. -- font id: 3
  22. -- text size: 12
  23. -- style flags: 0
  24. -- line height: 16
  25. -- part name: 
  26.  
  27.  
  28. -- part contents for background part 8
  29. ----- text -----
  30. CONTROL STRUCTURES - Repeat
  31.  
  32. -- part contents for card part 4
  33. ----- text -----
  34. HyperCard uses two basic types of control structures:
  35. 1) Making simple decisions
  36. 2) Repeating actions
  37.  
  38. In this stack we will give examples of the second type - Repeating actions with a "repeat" structure.
  39.  
  40. Basically it works like this...
  41. repeat (with parameters)
  42.    what to do
  43. end repeat